home *** CD-ROM | disk | FTP | other *** search
/ Apple Color Graphics Sampler / Apple Color Graphics Sampler.iso / English / Screen Savers / Dark Side of the Mac / FaderShell / Makefile < prev   
Encoding:
Makefile  |  1998-09-07  |  875 b   |  33 lines  |  [TEXT/MPS ]

  1. #
  2. #    MultiFinder-Aware Simple screen saver Applications
  3. #
  4. #    Makefile
  5. #
  6. #    Copyright © 1989 Tom Dowdy
  7. #    All rights reserved.
  8. #
  9. # Execute the following to build everything
  10. # BuildProgram :Faders:Invert
  11.  
  12. FadersDir    = ":Faders:"
  13. ObjectsDir = ":Objects:"
  14.     
  15. CObjs    = "{ObjectsDir}"Blackout.c.o ∂
  16.         "{CLibraries}"CRuntime.o ∂
  17.         "{CLibraries}"CInterface.o ∂
  18.         "{Libraries}"Interface.o
  19.  
  20. COptions = -o "{ObjectsDir}" -d MPW3 -r
  21.  
  22. "{ObjectsDir}"Blackout.c.o    ƒƒ Blackout.c
  23.     C {COptions} Blackout.c
  24. "{ObjectsDir}"Invert.c.o    ƒƒ Invert.c
  25.     C {COptions} Invert.c
  26.     
  27. "{FadersDir}"Invert        ƒƒ {CObjs} "{ObjectsDir}"Invert.c.o Invert.r
  28.         Link -o {Targ} {CObjs} "{ObjectsDir}"Invert.c.o
  29.         Link -rt FOCO=1000 -sn Initialize=Main -m 'DoSetupDialog' -o {Targ} "{ObjectsDir}"Invert.c.o {CObjs}
  30.         SetFile {Targ} -t 'Dark' -c 'DkSd'
  31.         Rez -rd -o {Targ} Blackout.r -append
  32.         Rez -rd -o {Targ} Invert.r -append
  33.